c# check if 2d array position exists

71

c# check if 2d array position exists -

// make sure we're not referencing cells out of bounds of the array
if (tileX < arr.GetLength(0) && tileY < arr.GetLength(1))
{
    // logic
}

Comments

Submit
0 Comments